home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 August: Tool Chest / Dev.CD Aug 00 TC Disk 1.toast / pc / tool chest / quickdraw / bitblitz 1.0 / source / blendutils.h < prev    next >
Encoding:
Text File  |  1990-09-20  |  810 b   |  26 lines

  1. /*--------------------------------------------------------------------------------------
  2. //
  3. //    File:          BlendProcs.h
  4. //
  5. //    Contents:    Header declarations procedures that generate blended fills.
  6. //
  7. //
  8. //    By Georgiann ("George") Delaney
  9. //    © 1989 - 1990, Apple Computer, Inc.
  10. //
  11. //--------------------------------------------------------------------------------------*/
  12.  
  13.  
  14.  
  15. void  HLSRectBlend            (Rect *boundRect, short saturation);
  16. void  HLSVLinearBlend        (Rect *boundRect, short saturation);
  17. void  HLSHLinearBlend        (Rect *boundRect, short saturation);
  18.  
  19. void  GrayRectBlend            (Rect *boundRect);
  20. void  GrayVLinearBlend        (Rect *boundRect);
  21. void  GrayHLinearBlend        (Rect *boundRect);
  22.  
  23. void  GrayPatRectBlend        (Rect *boundRect);
  24. void  GrayPatVLinearBlend    (Rect *boundRect);
  25. void  GrayPatHLinearBlend    (Rect *boundRect);
  26.